#include<stdio.h>

int main() {
	float x;
	scanf("%f", &x);
	printf("square of x is %f", x*x);
}
